home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / knowhow4 / line.h < prev    next >
C/C++ Source or Header  |  1994-10-10  |  278b  |  17 lines

  1. /*  LINE.H file. Line is the bar and text over this bar
  2.     loc xy is absolute screen coordinates
  3. */
  4.  
  5. #ifndef __LINE_H_
  6. #define __LINE_H_
  7.  
  8. #include "graphpp.h"
  9.  
  10. struct Line
  11.     {
  12.     void outtextxy(loc xy, char* text, int pattern = 0);
  13.     };
  14.  
  15.  
  16. #endif __LINE_H_
  17.